home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / util / moni / Scout-src.lha / source / system_headers.h < prev   
Encoding:
C/C++ Source or Header  |  2002-09-17  |  6.4 KB  |  239 lines

  1. /**
  2.  * Scout - The Amiga System Monitor
  3.  *
  4.  *------------------------------------------------------------------
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * You must not use this source code to gain profit of any kind!
  21.  *
  22.  *------------------------------------------------------------------
  23.  *
  24.  * @author Andreas Gelhausen
  25.  * @author Richard Körber <rkoerber@gmx.de>
  26.  */
  27.  
  28. #ifndef _SYSTEM_HEADERS_H
  29. #define _SYSTEM_HEADERS_H 1
  30.  
  31. #define __USE_SYSBASE
  32.  
  33. /*****************************************************************************/
  34.  
  35. #define NULL ((APTR)0L)
  36. #include <exec/types.h>
  37.  
  38. /*****************************************************************************/
  39.  
  40. #define USE_BUILTIN_MATH 1
  41. #include <string.h>
  42.  
  43. /*****************************************************************************/
  44.  
  45. #include <devices/ahi.h>
  46. #include <devices/audio.h>
  47. #include <devices/cd.h>
  48. #include <devices/clipboard.h>
  49. #include <devices/console.h>
  50. #include <devices/gameport.h>
  51. #include <devices/input.h>
  52. #include <devices/keyboard.h>
  53. #include <devices/newstyle.h>
  54. #include <devices/parallel.h>
  55. #include <devices/printer.h>
  56. #include <devices/sana2.h>
  57. #include <devices/scsidisk.h>
  58. #include <devices/serial.h>
  59. #include <devices/timer.h>
  60. #include <devices/trackdisk.h>
  61. #include <dos/datetime.h>
  62. #include <dos/dos.h>
  63. #include <dos/dosasl.h>
  64. #include <dos/dosextens.h>
  65. #include <dos/filehandler.h>
  66. #include <dos/rdargs.h>
  67. #include <exec/alerts.h>
  68. #include <exec/execbase.h>
  69. #include <exec/libraries.h>
  70. #include <exec/memory.h>
  71. #include <exec/ports.h>
  72. #include <exec/resident.h>
  73. #include <exec/semaphores.h>
  74. #include <exec/tasks.h>
  75. #include <graphics/displayinfo.h>
  76. #include <graphics/gfx.h>
  77. #include <graphics/gfxbase.h>
  78. #include <graphics/gfxmacros.h>
  79. #include <graphics/gfxnodes.h>
  80. #include <graphics/layers.h>
  81. #include <graphics/monitor.h>
  82. #include <intuition/intuition.h>
  83. #include <intuition/intuitionbase.h>
  84. #include <intuition/screens.h>
  85. #include <intuition/sghooks.h>
  86. #include <libraries/commodities.h>
  87. #include <libraries/commodities_private.h>
  88. #include <libraries/configvars.h>
  89. #include <libraries/expansion.h>
  90. #include <libraries/expansionbase.h>
  91. #include <libraries/identify.h>
  92. #include <libraries/locale.h>
  93. #include <libraries/mui.h>
  94. #include <libraries/usergroup.h>
  95. #include <lvo/exec_lvo.h>
  96. #include <mmu/mmubase.h>
  97. #include <mmu/mmutags.h>
  98. #include <mui/NListtree_mcc.h>
  99. #include <mui/NListview_mcc.h>
  100. #include <mui/NList_mcc.h>
  101. #include <resources/card.h>
  102. #include <resources/cia.h>
  103. #include <resources/disk.h>
  104. #include <resources/filesysres.h>
  105. #include <resources/misc.h>
  106. #include <rexx/rxslib.h>
  107. #include <sys/socket.h>
  108. #include <sys/syslog.h>
  109. #include <sys/time.h>
  110. #include <sys/types.h>
  111. #include <utility/tagitem.h>
  112. #include <utility/utility.h>
  113. #include <workbench/icon.h>
  114. #include <workbench/startup.h>
  115. #include <workbench/workbench.h>
  116.  
  117. #include <netinet/in.h>
  118.  
  119. #include <clib/alib_protos.h>
  120. #include <proto/ahi.h>
  121. #include <proto/asl.h>
  122. #include <proto/cia.h>
  123. #include <proto/diskfont.h>
  124. #include <proto/dos.h>
  125. #include <proto/exec.h>
  126. #include <proto/expansion.h>
  127. #include <proto/gadtools.h>
  128. #include <proto/graphics.h>
  129. #include <proto/icon.h>
  130. #include <proto/identify.h>
  131. #include <proto/layers.h>
  132. #include <proto/locale.h>
  133. #include <proto/commodities.h>
  134. #include <proto/intuition.h>
  135. #include <proto/muimaster.h>
  136. #include <proto/rexxsyslib.h>
  137. #include <proto/usergroup.h>
  138. #include <proto/utility.h>
  139. #include <proto/misc.h>
  140. #include <proto/timer.h>
  141. #include <proto/socket.h>
  142. #include <proto/mmu.h>
  143.  
  144. #include <dos.h>
  145. #include <ctype.h>
  146. #include <netdb.h>
  147. #include <stdarg.h>
  148. #include <stdlib.h>
  149. #include <string.h>
  150. #include <stdio.h>
  151. #include <fcntl.h>
  152. #include <ios1.h>
  153.  
  154. #include "scout_cat.h"
  155. #include "scout_defs.h"
  156. #include "scout_logo.h"
  157. #include "scout_net.h"
  158. #include "scout.h"
  159. #include "scout_tags.h"
  160. #include "startup_defs.h"
  161. #include "startup.h"
  162. #include "SmartReadArgs.h"
  163.  
  164. #include "scout_asm.h"
  165. #include "scout_extras.h"
  166.  
  167. #include "fontdisplay_class.h"
  168. #include "scout_about.h"
  169. #include "scout_allocations.h"
  170. #include "scout_arexx.h"
  171. #include "scout_assigns.h"
  172. #include "scout_classes.h"
  173. #include "scout_classes_detail.h"
  174. #include "scout_commands.h"
  175. #include "scout_commodity.h"
  176. #include "scout_commodity_detail.h"
  177. #include "scout_customclasses.h"
  178. #include "scout_devices.h"
  179. #include "scout_devices_detail.h"
  180. #include "scout_expansions.h"
  181. #include "scout_expansions_detail.h"
  182. #include "scout_flags.h"
  183. #include "scout_fonts.h"
  184. #include "scout_fonts_detail.h"
  185. #include "scout_functions.h"
  186. #include "scout_inputhandlers.h"
  187. #include "scout_interrupts.h"
  188. #include "scout_interrupts_detail.h"
  189. #include "scout_libraries.h"
  190. #include "scout_libraries_detail.h"
  191. #include "scout_locks.h"
  192. #include "scout_lowmemory.h"
  193. #include "scout_main.h"
  194. #include "scout_memory.h"
  195. #include "scout_memory_detail.h"
  196. #include "scout_mount.h"
  197. #include "scout_mount_detail.h"
  198. #include "scout_parentwindow.h"
  199. #include "scout_ports.h"
  200. #include "scout_ports_detail.h"
  201. #include "scout_print.h"
  202. #include "scout_priority.h"
  203. #include "scout_residents.h"
  204. #include "scout_residents_detail.h"
  205. #include "scout_resources.h"
  206. #include "scout_resources_detail.h"
  207. #include "scout_screenmode.h"
  208. #include "scout_screenmode_detail.h"
  209. #include "scout_semaphores.h"
  210. #include "scout_signal.h"
  211. #include "scout_system.h"
  212. #include "scout_tasks.h"
  213. #include "scout_tasks_detail.h"
  214. #include "scout_timer.h"
  215. #include "scout_vectors.h"
  216. #include "scout_version.h"
  217. #include "scout_windows.h"
  218. #include "scout_windows_detail.h"
  219. #include "scout_patches.h"
  220. #include "scout_catalogs.h"
  221. #include "scout_audiomode.h"
  222. #include "scout_audiomode_detail.h"
  223. #include "scout_resethandlers.h"
  224.  
  225. #include "i64.h"
  226. #include <tblib.h>
  227. #include <showpatch.h>
  228. #include <setman.h>
  229. #include <patchcontrol.h>
  230.  
  231. #include <pragmas/identify_pragmas.h>
  232. #include <pragmas/cia_private_pragmas.h>
  233.  
  234. #include "hexdump.h"
  235.  
  236. /*****************************************************************************/
  237.  
  238. #endif /* _SYSTEM_HEADERS_H */
  239.